home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 1997 March / inter@ivo 1997-03.iso / wing / timewing.rc_ / timewing.rc
Text File  |  1994-09-14  |  2KB  |  55 lines

  1. /**************************************************************************
  2.  
  3.     TIMEWING.RC - A timing demo for WinG
  4.  
  5.  **************************************************************************/
  6. /**************************************************************************
  7.  
  8.     (C) Copyright 1994 Microsoft Corp.  All rights reserved.
  9.  
  10.     You have a royalty-free right to use, modify, reproduce and 
  11.     distribute the Sample Files (and/or any modified version) in 
  12.     any way you find useful, provided that you agree that 
  13.     Microsoft has no warranty obligations or liability for any 
  14.     Sample Application Files which are modified. 
  15.  
  16.  **************************************************************************/
  17.  
  18. #include <windows.h>
  19. #include "timewing.h"
  20.  
  21. AppIcon  ICON    timewing.ico
  22.  
  23. AppAbout DIALOG 22, 17, 144, 75
  24. STYLE WS_POPUP | WS_DLGFRAME
  25. BEGIN
  26.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  27.     CTEXT "WinG Timing Application"             -1,  0, 14, 144, 8
  28.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  29.     CTEXT "Copyright (c) 1994 Microsoft Corp."   -1,  5, 47,132, 9
  30.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  31.     DEFPUSHBUTTON "OK"                        IDOK, 53, 59, 32, 14, WS_GROUP
  32. END
  33.  
  34. AppMenu menu
  35. begin
  36.     POPUP "&File"
  37.         begin
  38.             MENUITEM "&Open Bitmap..."          , MENU_OPEN
  39.             MENUITEM SEPARATOR
  40.             MENUITEM "&About..."         , MENU_ABOUT
  41.             MENUITEM "E&xit"             , MENU_EXIT
  42.         end
  43.     POPUP "&Stretch"
  44.     begin
  45.         MENUITEM "&1:1", MENU_1TO1
  46.         MENUITEM "1:&2", MENU_1TO2
  47.         MENUITEM "1:&~2", MENU_1TOALMOST2
  48.     end
  49.     MENUITEM "Time &All", MENU_TIMEALL
  50.     POPUP "&Time"
  51.     BEGIN
  52.         MENUITEM "", MENU_TIME
  53.     END
  54. end
  55.